@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'poppins', sans-serif;
}

span {
    color: var(--main-color);
}

:root {
    --bg-color: #ffffff;
    --second-bg-color: rgba(248, 246, 254, 6);
    --text-color: #171717;
    --main-color: #86af49;
}

html {

    font-family: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;

    /* height: 400vh !important; */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 5%;
    background: var(--second-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: .5s;
    box-shadow: 0 .5rem 1rem rgb(0, 0, .1);

}

.sticky {
    background: var(--second-bg-color);
}

.logo {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

.logo img {
    width: 200px;
    height: 75px;
}

.navbar {
    position: relative;
}

.navbar a {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 2rem;
    transition: .3s;
}

.navbar .btn {
    padding: 15px 15px;
    font-size: 1rem;
    margin-left: 2rem;
    background: var(--main-color);
    border-radius: 5px;
    color: var(--bg-color);
}

.navbar .btn a {
    padding: 0;
    margin: 0;
}

.navbar .btn a:hover {
    color: var(--second-bg-color);
}

.navbar .btn:hover a {

    color: var(--second-bg-color);
}

.navbar .serves {
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 2rem;
    transition: .3s;
    background: var(--second-bg-color);
}

.navbar .serves:hover .serves-box {
    display: flex;
}

.serves-box {
    display: none;
    position: absolute;
    right: -45%;
    flex-direction: column;
    border: 1px solid whitesmoke;
    text-align: center;
    padding: 10px;
    background: var(--text-color);
    text-align: center;
    width: 180%;
}


.serves-box a {
    margin: auto;
    color: var(--bg-color);
    font-size: small;

}

.navbar .btn:hover {
    color: var(--text-color);

}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
}


#menu-icone {
    position: relative;
    font-size: 3.6rem;
    cursor: pointer;
    display: none;
}

section {
    min-height: 80vh;
    padding: 5rem 9% 2rem;
}

.home {
    display: flex;
    align-items: center;
    padding: 0 5%;


}

.content {
    margin-top: 100px;
    width: 50%;
}

.content h2 {

    position: relative;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.content h1 {

    position: relative;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--main-color);
}

.content p {
    position: relative;
    font-size: 1.2rem;
    margin: 2rem 0 3rem;
}

.btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 2.5rem;
}

.btn-box .btn {
    position: relative;
    display: flex;
    justify-content: center;
    /* width: 7rem; */
    height: 100%;
    padding: 10px 10px;
    background: var(--main-color);
    align-items: center;
    border: .2rem solid var(--main-color);
    border-radius: .4rem;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box .btn:hover {
    color: var(--main-color);
}

.btn-box .btn:nth-child(2) {
    background: transparent;
    color: var(--main-color);
}


.btn-box .btn:nth-child(2)::before {
    background: var(--main-color);
}




.btn-box .btn:nth-child(2):hover {
    color: var(--bg-color);
}

.btn-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    left: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.btn-box .btn:hover:before {
    width: 100%;
}

.imge {
    width: 50%;
    margin-top: 100px;

}



.home-imgehover {

    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: transparent;
    /* border: 2px solid red; */
    transition: .8s;
}

.home-imgehover:hover {
    background: var(--bg-color);
    opacity: .8;
}

.about {
    min-height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--second-bg-color);
    padding-bottom: 3rem;
}

.about .about-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    width: 50%;
}

.about .about-box i {
    font-size: 5rem;
    padding: 1rem 2rem;
    border-radius: 50%;
    color: var(--bg-color);
    background: var(--main-color);
}

.about .about-box i:hover {
    color: var(--main-color);
    background: var(--bg-color);
    transition: 1s;
}

.about .about-box h3 {
    margin: 2rem 1rem 0;
}

.about .about-box p {
    margin: 2rem 1rem 0;
}


.heading {
    position: relative;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-imge {
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.about-imge img {

    width: 90%;
    border-radius: 50%;
    border: .3rem solid var(--main-color);
}

.about-imge .circle-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: .2rem solid var(--main-color);
    border-bottom: .2rem solid var(--main-color);
    border-left: .2rem solid var(--second-bg-color);
    border-right: .2rem solid var(--second-bg-color);

    animation: about 8s linear infinite;
}

.about-content {
    position: relative;
    text-align: center;

}

.about-content h3 {

    position: relative;
    display: inline-block;
    font-size: 2rem;
    margin: 2rem 0 3rem;
}

.about-content p {
    position: relative;
    font-size: 1rem;
}

.about-content .btn-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.info {
    position: relative;
    height: 7rem;
    margin: 8rem 2rem 0;
    padding: 8rem 0;
    align-items: center;
    display: flex;
    justify-content: center;
    background: var(--second-bg-color);
}

.info h1 {
    background: var(--second-bg-color);
    font-size: 3rem;
    max-width: 80%;
    text-align: center
}

.info img {
    width: fit-content;
    height: fit-content;
    position: absolute;
}

.info .image3 {
    right: 0;
}

.info .image2 {
    left: 7%;
    top: 0%;
}
.Title_module_header__da7f0d22{
    display: none !important;
}
.info-about {
    width: 80%;
    margin: 1rem auto;
    color: var(--main-color);
    line-height: 40px;

}

.info-btn button {
    color: var(--text-color);
    display: flex;
    width: fit-content;
    padding: 1rem;
    margin: 2rem auto;
    background: var(--main-color);
    ;
}

.info .image5 {
    top: 30%;
    right: 6%;
    transform: rotate(9.142rad);
}

.info .image4 {
    left: 10%;

    transform: rotate(7.142rad);
}

.info .image33 {
    left: 0;
    transform: rotate(7.142rad);
}

.info .image1 {
    right: 7%;
    top: 65%;
}

.info .image11 {
    left: 6%;
    top: 76%;
}

.Wertstoffe {
    width: 80%;
    margin: auto;
}

.Wertstoffe .box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.Wertstoffe .box {
    padding-bottom: 1rem;

    padding-top: 2rem;
    border-bottom: 1px solid #010100;
}

.Wertstoffe .box h3 {
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;

}

.Wertstoffe .box img {
    width: 6rem;
}

.Wertstoffe .info-down {
    margin: 2rem 0;
}

.Wertstoffe .info-down p {
    padding: 0.6rem 0;
    font-size: 20px;
}

.Wertstoffe .box p {
    width: 30%;
    text-align: center;
    opacity: .8;
}

.Wertstoffe h2 {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.rateing {
    width: 80%;
    margin: auto;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-around;
    text-align: center;
    margin-top: 20px;
    border: 1px solid var(--main-color) !important;
    border-radius: 10px;
    padding: 10px;

}

.box-rateing {
    max-width: 30%;
}

.box-rateing i {
    color: gold;
}

.works {

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 3rem;
}


.works-box h3 {
    font-size: larger;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--main-color);
}

.works-box p {
    font-size: .7rem;
    line-height: 24px;
    opacity: .5;
}

.works-box button {
    background: var(--main-color);
    padding: 10px;
    color: var(--bg-color);
    margin: 1rem;
    border-radius: 5px;
}


.skills {
    min-height: auto;
    padding-bottom: 3rem;
    background: var(--second-bg-color);
}

.skills h2 {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

.skills .skills-box {

    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 5rem;
}

.skills .skills-box img {
    width: 30%;
}

.skills .skills-content p {
    font-size: 15px;
    opacity: .7;
}

.skills .skills-content h1 {
    margin: 1rem 0;
    font-size: 35px;

}

.skills .skills-box img:hover {
    opacity: .5;
    transition: .5s;
}

.fillter-btn {
    margin: 2rem;
    text-align: center;
}

.active2 {
    color: #00abf0 !important;



}

.hiden {
    display: none !important;
}

.fillter-btn .btn {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .4px;
    margin-left: 1.3rem;
    color: var(--text-color);
}

.fillter-btn .btn:hover {
    color: var(--main-color);
}



.kotact {

    min-height: auto;
    margin-top: 5rem;
    gap: 2rem;
    padding-bottom: 3rem;
}

.kotact .box {
    width: 45%;
    height: fit-content;
}

.kotact h2 {
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-size: 45px;
}



form {
    align-items: center;
    max-width: 70rem;
    margin: auto;
    margin-bottom:2rem ;
}

form .input-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

form .input-box .input-field {
    position: relative;
    width: 49%;
    margin: .8rem 0;
}

form .focus {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    border-radius: 3px;
    z-index: -1;
    transition: .5s;
}

form .input-box .input-field input:focus~.focus,
form .input-box .input-field input:valid~.focus,
form .texterea textarea:focus~.focus,
form .texterea textarea:valid~.focus {
    width: 100%;
}

form .input-box .input-field input {
    width: 100%;
    height: 100%;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
    border-radius: 2px;
    border: 1px solid var(--main-color);
}

form .input-box .input-field select {
    position: relative;
    width: 100%;
    height: 75%;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
    border-radius: 2px;
    border: 1px solid var(--main-color);
    z-index: 1;
}

.input-field label{
    background: var(--bg-color);
}

/* form .input-box .input-field select option span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--main-color);
} */

form .texterea textarea {
    width: 100%;
    height: 100%;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
}


form .input-box .input-field input::placeholder,
form .texterea textarea::placeholder {

    color: var(--main-color);
}

form .texterea {
    position: relative;
    margin: 4rem 0 9 1.3rem;
    z-index: 1;
    border-radius: 2px;
    border: 1px solid var(--main-color);
}


.last {
    height: 75% !important;
}


form .btn-box .btn {
    cursor: pointer;
    margin: auto;
}

form .btn-box {
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

footer {
    align-items: center;
    padding: 1rem 9%;
    background: #17171A;
    color: var(--bg-color);

}

footer .side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #888787;
}

footer .side .box {
    width: 30%;
    padding-bottom: 15px;
}

footer .side .box i {
    font-size: medium;
    padding-right: 5px;
}

.footer p {
    font-size: 11px;
    padding: 5px 0;
}

footer .dowen {
    align-items: center;
    width: fit-content;
    margin: auto;

}

footer .dowen p {
    padding: 15px;
    font-size: 15px;
}

.home-content h1 span {
    color: var(--text-color);
}

.kotact {
    display: flex;

}

@media (max-width:1200px) {
    html {
        font-size: 75%;
    }

    .home-sci {
        margin-bottom: 10%;

    }

    section {
        /* padding: 10rem 4% 2rem; */
        min-height: 80vh;
    }

    .works-box p {
        font-size: .6rem;
        line-height: 20px;

    }

}

@media (max-width:999px) {
    .header {
        font-size: 75%;
    }

    section {
        padding: 10rem 4% 2rem;
        min-height: 80vh;
    }

    .home {
        padding: 0 4%;
    }

    .kotact h1 {
        font-size: 1rem !important;
    }

    .home .content {
        width: 100%;
    }

    .works-box {
        width: 95%;
        margin: auto;
    }

    .works-box iframe {
        width: 100%;

    }

    .works {

        flex-direction: column;
    }

    .footer {
        padding: 2rem 4%;
    }

    .info img {
        width: 30px;
        height: fit-content;
        position: absolute;
    }


    .home-sci {
        margin-bottom: 10%;

    }
    .PRIVATER {
        flex-direction:column-reverse;
    }
    .PRIVATER .box{
        width: 100% !important;
    }
}

@media (max-width:884px) {
    .header {
        background: var(--bg-color);
        box-shadow: 0 .5rem 1rem rgb(0, 0, .2);

    }

    #menu-icone {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: -101%;
        width: 100%;
        padding: 1rem;
        background: var(--main-color);
        box-shadow: 0 .5rem 1rem rgb(0, 0, .2);
        transition: .25s ease;
        transition-delay: .25s;
        z-index: 1;
    }

    footer .side {
        flex-direction: column;
        justify-self: start;
    }

    footer .side .box {
        width: 100%;
    }

    .ac {
        left: 0%;
        transition-delay: 0s;
    }
    .serves-box {
        display: none;
    }
    .serves-box a {
        display: block;
        position: relative;
        text-align: left;
        color: var(--second-bg-color);

        transform: translateX(-20rem);
        transition: .25s ease;
        transition-delay: 0s;
    }
    .navbar a {
        display: block;
        font-size: 1rem;
        margin: 1.5rem 0;
        transform: translateX(-20rem);
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.ac a {
        transform: translateX(0);
        transition-delay: .25s;

    }

    .navbar .active-nav {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--bg-color);
        border-top: 2px solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.ac .active-nav {
        transition-delay: .25s;
        left: 0%;
    }

    .home-imgehover {
        pointer-events: none;
        background: var(--bg-color);
        opacity: .6;
    }

    .home-sci {
        margin-bottom: 10%;

    }

    .home .content {
        width: 100%;
    }

    .home .imge {
        display: none;
    }

    .about {
        flex-direction: column;
        gap: 3rem;
        justify-content: space-around;
    }

    .about .about-box {
        width: 100%;
    }

    .about .about-box .box {
        width: 50%;
    }
}

.animate {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--second-bg-color);
    z-index: 98;
}

.animate1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--second-bg-color);
    z-index: 98;
}

.logo .animate,
.lang .animate,
.navbar .animate,
#menu-icone .animate,
.home.show-animation .animate {
    animation: showRight 1s ease forwards;
    animation-delay: calc(.3s * var(--i));
}

.animate.scroll {
    transition: 1s ease;
    transition-delay: calc(.3s / var(--i));
    animation: none;
}

.animate1.scroll {
    transition: 1s ease;
    transition-delay: calc(.3s / var(--i));
    animation: none;
}

.about.show-animation .animate1.scroll {

    animation-delay: calc(.3s * var(--i));
    width: 0;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.works.show-animation .animate.scroll {

    animation-delay: calc(.3s * var(--i));
    width: 0;
}

.skills.show-animation .animate1.scroll {

    animation-delay: calc(.3s * var(--i));
    width: 0;
}

.contact.show-animation .animate.scroll {

    animation-delay: calc(.3s * var(--i));
    width: 0;
}

@media (max-width:520px) {

    .kotact {
        flex-direction: column;
    }

    .kotact .box .q_elements_item_content {
        padding: 0 !important;
    }

    .kotact .box {
        width: 80%;
        margin: auto;
    }

    html {
        font-size: 80%;
    }

    .Wertstoffe .box img {
        display: none;
    }

    .Wertstoffe .box h3 {
        width: 50%;
    }

    .Wertstoffe .box p {
        width: 50%;
    }

    .home-content h1 {
        display: flex;
        flex-direction: column;
    }

    .home-sci {
        margin-bottom: 24%;

    }


    form .input-box .input-field {
        width: 100%;
    }

    .footer {
        display: flex;
        flex-direction: column;
        width: 110%;
    }

    .kotact h1 {
        font-size: 1rem !important;
    }

    .kotact h2 {
        font-size: medium !important;
    }

    .about .about-box {
        flex-direction: column;
        gap: 5rem;
    }

}

@keyframes home {

    0%,
    10%,
    100% {
        background-position: -23rem 0;
    }

    65%,
    85% {
        background-position: -0 0;
    }

}

@keyframes homecurser {

    0%,
    10%,
    100% {
        width: 0;
    }

    65%,
    78%,
    85% {
        width: 100%;
        opacity: 1;
    }

    75%,
    81% {
        opacity: 0;
    }

}

@keyframes about {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);

    }
}

@keyframes showRight {
    100% {
        width: 0;
    }
}




.container {
    margin: 0 auto;
    padding: 4rem 0;
    width: 80%;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid var(--main-color);
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--main-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    color: var(--text-color);
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
    color: var(--text-color);
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded=true] {
    color: #03b5d2;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    line-height: 30px;
    font-weight: 300;
    margin: 1em 0rem;
    color: var(--main-color);
}

.JETZT {
    width: 80%;
    margin: auto;

}


.PRIVATER{

    width: 80%;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
    line-height: 30px;
}

.PRIVATER .box{
    color: var(--main-color);
    width: 45%;
    line-height: 30px;
}

.PRIVATER-dowen{
    width: 80%;
    margin: 2rem auto;
    color: var(--main-color);
    line-height: 30px;
}
.PRIVATER-Kleber{
    width: 80%;
    margin: 2rem auto;
    color: var(--main-color);
    line-height: 30px;
}
.PRIVATER-Kleber button{

    margin: 3rem 0;
}
.PRIVATER-Kleber button a{
    padding: 1rem;
    background: var(--main-color);
    border-radius: 15px;
    font-size: larger;
    transition: .5s;
    color: var(--text-color);
}
.PRIVATER-Kleber button:hover a {
    color: var(--second-bg-color);
    transition: .5s;
}

